home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 1998 #2
/
Amiga Plus CD - 1998 - No. 2.iso
/
pd
/
musik
/
eagleplayer2.00
/
rexx
/
ep_loadeagleplayer.dopus
< prev
next >
Wrap
Text File
|
1997-08-05
|
773b
|
41 lines
/* Eagleplayer control using DOPUS 4
(c) 1992-97 DEFECT Softworks
starts Eagleplayer if not active yet
usage:
[Arexx] Eagleplayer2:rexx/EP_LoadEagleplayer.dopus {p}
*/
options results
parse arg opusport
Waittime = 60 /* 1 min wait */
if pos('rexx_EP',SHOW('Ports')) ~= 0 then
do
address value opusport
toptext 'Eagleplayer already in Memory!'
exit
end
/* Eagleplayer laden */
address COMMAND 'run >nil: Eagleplayer2:Eagleplayer'
testflag=0
time ('R')
address value opusport
toptext 'Waiting for Eagleplayer'
do while (testflag=0) & (time('E') < Waittime)
if (pos('rexx_EP',SHOW('Ports')) ~= 0) then testflag =1
end
if pos('rexx_EP',SHOW('Ports')) ~= 0 then
toptext 'Eagleplayer ready'
else
toptext 'Couldn`t load Eagleplayer!'
exit